D3.5 Conservation of Momentum#
Motivation — Conservation as a Consequence, Not a New Law#
Conservation of momentum is often presented as a standalone principle.
In reality, it is not a new idea at all.
Momentum conservation is simply a special application of the impulse–momentum theorem applied to a system rather than a single particle.
For a single point particle, conservation of momentum is rarely interesting: any interaction with the surroundings generally transfers momentum to or from the particle, and its momentum changes accordingly. Nothing is “conserved” unless the particle is completely isolated—which is uncommon in practice.
The true power of momentum conservation appears when we shift perspective:
instead of tracking one particle, we track multiple interacting particles together as a system.
In that case, momentum transfers between particles can cancel internally, revealing a quantity that remains unchanged.
D3.5.1 From a Single Particle to a Two-Particle System#
For a single point particle, the impulse–momentum theorem is
Now consider two interacting point particles, labeled particle 1 and particle 2.
Each particle may experience forces due to the other particle, as well as forces due to the surroundings. Their individual momentum changes are
D3.5.2 Total Momentum of a System#
We define the total momentum of the two-particle system as the sum of the individual momenta:
Here:
lowercase \(p_{1,x}\) and \(p_{2,x}\) refer to individual particles,
uppercase \(P_x\) refers to the system as a whole.
The change in total momentum is therefore
D3.5.3 Internal vs. External Impulses#
Each particle in a system may experience impulses from different sources:
Internal impulses: due to forces the particles exert on each other
External impulses: due to forces from outside the system (e.g., the ground, air resistance)
When two particles interact, the forces they exert on each other form an action–reaction pair, as described by Newton’s Third Law. These forces are equal in magnitude, opposite in direction, and—crucially—act over the same interaction time.
As a result, the impulses exchanged internally satisfy
Key Consequence of Internal Impulses
Internal impulses always cancel exactly when summed over the system.
Internal interactions may transfer momentum from one particle to another, but they cannot change the total momentum of the system.
Only external impulses—those arising from forces outside the system—can change the system’s total momentum.
Why This Works for Momentum (and Not Always for Energy)#
It is important to recognize why this cancellation works so cleanly for momentum.
Impulse depends on force acting through time.
Because action–reaction forces act over the same time interval, their impulses always cancel at the system level.
This is not generally true for work and energy.
Work depends on force acting through displacement, and interacting particles can move in opposite directions, during the same interaction. As a result, internal action–reaction forces can do work on both particles with the same sign, and internal work does not necessarily cancel.
You do not need to understand this distinction in detail yet—but it is worth keeping in mind.
It explains why momentum conservation follows so directly from Newton’s laws, while energy analysis requires additional care.
This contrast will become important when we later study the work–energy theorem.
D3.5.4 Conservation of Momentum#
If the net external impulse acting on the system is zero,
then the change in total momentum must also be zero:
This leads directly to the conservation of momentum.
Conservation of Momentum (1D, Two-Particle System)
If the net external impulse on a system is zero, then the total momentum of the system remains constant:
For a two-particle system, this means
Written in terms of mass and velocity, the working equation is
This result is not an assumption—it is a direct consequence of the impulse–momentum theorem applied to a multi-particle system.
Example – Conservation of Momentum in a 1D Collision
Problem
Two carts move along a straight, frictionless track.
Cart 1 has mass \(m_1 = 1.0\ \text{kg}\) and initial velocity
\[ v_{1,x,i} = +4.0\ \text{m/s}. \]Cart 2 has mass \(m_2 = 2.0\ \text{kg}\) and is initially at rest:
\[ v_{2,x,i} = 0. \]
After the interaction, cart 1 moves with velocity
Assuming external impulses are negligible, find the final velocity of cart 2.
Methodology
Treat both carts together as a two-particle system.
Since the net external impulse is zero, apply conservation of momentum.
Use the working equation and solve for the unknown final velocity.
Solution
Initial total momentum:
Final total momentum:
Conservation of momentum requires
Solving for \(v_{2,x,f}\):
Interpretation
During the interaction, momentum is transferred from cart 1 to cart 2 through internal impulses.
Although the individual momenta change, the total momentum of the two-cart system remains constant.
The lighter cart slows down, while the heavier cart begins moving in the same direction, consistent with momentum conservation.
Box Activity 1 – Conservation of Momentum (Two-Particle System)
In this activity, you will apply conservation of momentum to a simple one-dimensional interaction.
Focus on system-level reasoning and careful use of signs.
Task
Two carts move along a straight, frictionless track.
Cart A has mass
\[ m_A = 1.5\ \text{kg} \]and initial velocity
\[ v_{A,x,i} = +3.0\ \text{m/s}. \]Cart B has mass
\[ m_B = 1.0\ \text{kg} \]and is initially at rest.
After the interaction, cart A moves with velocity
Compute the initial total momentum of the system.
Use conservation of momentum to find the final momentum of cart B.
Determine the final velocity of cart B.
State whether the carts move in the same or opposite directions after the interaction.
Use proper signs throughout.
A Possible Solution Guide
Initial total momentum
Final momentum of cart A
Final momentum of cart B
Final velocity of cart B
Interpretation
The carts move in opposite directions after the interaction.
Momentum is redistributed between the carts, while the total system momentum remains constant.
# DIY Cell
Box Activity 2 – Conservation of Momentum Using Python
In this activity, you will use Python to solve a 1D momentum-conservation problem in two ways:
a direct calculator approach, and
a symbolic equation-solver approach using SymPy.
Task
Two carts interact on a frictionless track.
Cart 1:
\[ m_1 = 0.80\ \text{kg}, \qquad v_{1,x,i} = +2.5\ \text{m/s} \]Cart 2:
\[ m_2 = 1.20\ \text{kg}, \qquad v_{2,x,i} = -1.0\ \text{m/s} \]
After the interaction, cart 1 has velocity
Assuming net external impulse is zero, use momentum conservation to determine \(v_{2,x,f}\).
Print your final answer in scientific notation with three significant figures.
A Possible Solution Guide
Method 1 — Calculator approach (direct computation)
m1 = 0.80
m2 = 1.20
v1_i = 2.5
v2_i = -1.0
v1_f = -0.50
P_i = m1*v1_i + m2*v2_i
v2_f = (P_i - m1*v1_f)/m2
print(f"{v2_f:.3e}")
Method 2 — SymPy equation solver
import sympy as sp
m1 = 0.80
m2 = 1.20
v1_i = 2.5
v2_i = -1.0
v1_f = -0.50
v2_f = sp.symbols('v2_f')
equation = sp.Eq(m1*v1_i + m2*v2_i, m1*v1_f + m2*v2_f)
solution = sp.solve(equation, v2_f)[0]
print(f"{float(solution):.3e}")
Interpretation
The computed value of \(v_{2,x,f}\) ensures that $\( m_1 v_{1,x,i} + m_2 v_{2,x,i} = m_1 v_{1,x,f} + m_2 v_{2,x,f}, \)$ so the total system momentum remains constant.
# DIY Cell
D3.5.5 Why Conservation Works So Well#
Momentum conservation is especially powerful because:
internal forces can be complicated or unknown,
interaction times may be very short (collisions),
external impulses may be negligible over the interaction time.
In such cases, focusing on total momentum before and after the interaction allows us to predict outcomes without knowing the detailed forces involved.
This is why conservation of momentum plays a central role in analyzing:
collisions,
recoil,
explosions,
and separation events.
In the next section, we will apply momentum conservation to specific two-particle scenarios and see how momentum is redistributed between particles while the total remains unchanged.
D3.5.6 Two-Particle Simulation#
Interpreting the Collision Simulations#
In general, a collision is an interaction during which particles exert large forces on each other for a short time, transferring momentum between them. These momentum transfers are internal to the system: one particle loses momentum while the other gains momentum. Because the internal impulses are equal in magnitude and opposite in direction, they cannot change the total momentum of the system. As a result, the system’s total momentum remains constant throughout the collision.
In the simulations shown here, we deliberately consider two separate collision scenarios with carefully chosen initial conditions. In the first case, the particles stick together after the collision (perfectly inelastic collision). In the second case, the particles separate after the collision (elastic collision) with one particle initially at rest. These specific setups allow us to determine the final motion using conservation of momentum alone, without invoking any additional principles.
It is important to emphasize that this is not true for all elastic collisions. In the most general elastic collision, both conservation of momentum and kinetic energy must be employed to fully determine the outcome. The additional requirement of kinetic energy conservation will be introduced and explored in the next module. Here, the focus is on seeing how momentum conservation emerges naturally from internal momentum transfer during collisions, and how it provides a powerful and sufficient tool when the physical conditions allow.
Using the Simulations as a Problem-Solving Tool#
The collision simulations in this module are not just demonstrations—they are tools you can actively use. By modifying the initial conditions in the code (masses, initial velocities, and starting positions), you can test your physical reasoning and verify calculations for problems you encounter in homework, quizzes, or exams.
For example, after solving a collision problem analytically using conservation of momentum, you can change the values of m1, m2, v1_0, and v2_0 in the simulation to match the problem setup. Running the simulation allows you to observe how the particles move before and after the interaction and to check whether the final velocities agree with your calculated results. This provides immediate feedback on both your algebra and your sign conventions.
Used in this way, the simulations serve as a sanity check, not a shortcut. They help you build intuition about how momentum is redistributed during collisions and reinforce that internal interactions cannot change total momentum. Over time, experimenting with different initial conditions will strengthen your confidence in applying conservation principles correctly—especially under exam conditions where careful reasoning matters most.
---- Perfectly Inelastic Collision (Stick Together) ----
m1 = 2.000e+00 kg, v1_i = 1.500e+00 m/s, p1_i = 3.000e+00 kg·m/s
m2 = 1.000e+00 kg, v2_i = -5.000e-01 m/s, p2_i = -5.000e-01 kg·m/s
Initial total momentum P_i = 2.500e+00 kg·m/s
--------------------------------------------------------
Final combined mass M_f = 3.000e+00 kg
Final common velocity v_f = 8.333e-01 m/s
p1_f = 1.667e+00 kg·m/s, p2_f = 8.333e-01 kg·m/s
Final total momentum P_f = 2.500e+00 kg·m/s
Collision occurred at t ≈ 2.200e-01 s
---- Perfectly Elastic Collision (m2 initially at rest) ----
m1 = 2.000e+00 kg, v1_i = 1.500e+00 m/s, p1_i = 3.000e+00 kg·m/s
m2 = 1.000e+00 kg, v2_i = 0.000e+00 m/s, p2_i = 0.000e+00 kg·m/s
Initial total momentum P_i = 3.000e+00 kg·m/s
-----------------------------------------------------------
Collision occurred at t ≈ 9.700e-01 s
Immediately after collision: v1 = 5.000e-01 m/s, v2 = 2.000e+00 m/s
-----------------------------------------------------------
End-of-sim velocities: v1_f = 5.000e-01 m/s, v2_f = 2.000e+00 m/s
End-of-sim momenta: p1_f = 1.000e+00 kg·m/s, p2_f = 2.000e+00 kg·m/s
Final total momentum P_f = 3.000e+00 kg·m/s